home *** CD-ROM | disk | FTP | other *** search
- /*
- $VER: Save&Exit.ie 1.0 (14.9.95)
-
- Save the actual GUI and then quit IEditor: I'm too lazy to insert this
- function in a menu, so here's the ARexx version!
-
- */
-
- OPTIONS RESULTS
-
- address 'IEDITOR.1'
-
- /* Check if the GUI has a name */
-
- 'getname'
-
- if result = '' then exit
-
- 'save'
- 'quit'
-
- exit
-